Mega Code Archive

Categories
1) Android
2) ASP.Net
3) ASP.Net Tutorial
4) C
5) C Tutorial
6) C#
7) C# Book
8) C# by API
9) C# Tutorial
10) C++
11) C++ Tutorial
12) Delphi
13) Flash ActionScript
14) Flex
15) Java
16) Java Book
17) Java by API
18) Java Tutorial
19) JavaScript DHTML
20) JavaScript Reference
21) JavaScript Tutorial
22) MSOfficeExcel 2007 Tutorial
23) MSOfficePowerPoint 2007 Tutorial
24) MSOfficeWord 2007 Tutorial
25) MSSQL
26) MSSQL Tutorial
27) MySQL
28) MySQL Tutorial
29) Oracle PLSQL
30) Oracle PLSQL Tutorial
31) Perl
32) Php
33) PostgreSQL
34) Python
35) Python Tutorial
36) Ruby
37) Silverlight
38) VB.Net
39) VB.Net by API
40) VB.Net Tutorial
41) Visual C++ .NET
42) VisualBasic Script
43) XML
44) XML Tutorial
 
MySQL Tutorial
1) Aggregate Functions
2) Cast Functions Operators
3) Comparison Functions Operators
4) Control Flow Functions
5) Cursor
6) Data Dictionary
7) Data Types
8) Database
9) Date Time Functions
10) Encryption Compression Functions
11) Information Functions
12) Insert Update Delete
13) Introduction
14) Logic Operator
15) Math Numeric Functions
16) Miscellaneous Functions
17) MySQL Utilities
18) Privilege
19) Procedure Function
20) Regular Expressions
21) Select Query
22) String Functions
23) Subquery
24) Table
25) Table Join
26) Trigger
27) View
Regular Expressions
1) [
2) [ characters ]
3) [[
4) {n} or {m,n} notation provides a more general way of writing regular expressions
5) Characters and classes used by the REGEXP and NOT REGEXP operators (or RLIKE and NOT RLIKE, which are synonyms)
6) Get first name with either av or am
7) Get first name with one or more J character
8) Get first name with zero for more instances of the sequence Ja
9) Get first name with zero or more J characters
10) Get first name with zero or one J character
11) Get the first name ending with n
12) Get the first name starting with J
13) Match any character (including carriage return and newline)
14) Match any sequence of one or more a characters
15) Match any sequence of zero or more a characters
16) Match either of the sequences de or abc
17) Match either zero or one a character
18) Match the beginning and end of words, respectively( [[
19) Match the beginning of a string
20) Match the end of a string
21) Match zero or more instances of the sequence abc
22) Matches any character that is (or is not, if ^ is used) either a, b, c, d or X
23) Pattern Matching
24) REGEXP ^[a-f]
25) REGEXP ^[mn] [sz]$
26) Regular Expressions
27) SELECT ~ REGEXP [[ ~ ]]
28) SELECT ~ REGEXP [[ tilde ]]
29) SELECT 1+2 REGEXP 1+2
30) SELECT abcda REGEXP ^[^a-dXYZ]+$
31) SELECT abcde REGEXP a[bcd]{1,10}e
32) SELECT abcde REGEXP a[bcd]{3}e
33) SELECT abcdeX REGEXP ^[^a-dXYZ]+$
34) SELECT aXbc REGEXP ^[^a-dXYZ]+$; (3)
35) SELECT aXbc REGEXP ^[a-dXYZ]$
36) SELECT aXbc REGEXP ^[a-dXYZ]+$; (2)
37) To find names beginning with J
38) To find names beginning with J, use ^ to match the beginning of the name
39) To find names containing an a
40) To find names containing an e, use this query
41) To find names containing exactly five characters
42) To find names containing exactly five characters using {n}
43) To find names containing exactly five characters, use five instances of the _ pattern character
44) To find names ending with es, use $ to match the end of the name
45) To find names ending with on
46) To matches only lowercase b at the beginning of a name